home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / bug / alsa-base / script < prev   
Text File  |  2009-10-11  |  847b  |  28 lines

  1. #!/bin/sh
  2.  
  3. exec 1>&3 2>&3
  4.  
  5. # As of reportbug 3.14 package status information can be added by putting
  6. # a "package-status: <package-name>" line in the bug control file.
  7. # Unfortunately, reportbug << 3.14 crashes if it finds multiple
  8. # fields in the control file.  We don't want to Conflict with
  9. # reportbug << 3.14 if we can avoid it so we use a method of appending
  10. # package info that works with all current versions of reportbug.
  11. # We can switch to the package-status: method after etch is released.
  12. echo "--- Begin additional package status ---"
  13. dpkg -l libasound2
  14. echo "--- End additional package status ---"
  15.  
  16. for F in version cards ; do
  17.     P="/proc/asound/$F"
  18.     if [ -r "$P" ] ; then
  19.         echo "--- Begin $P ---"
  20.         cat "$P"
  21.         echo "--- End $P ---"
  22.     fi
  23. done
  24.  
  25. echo "--- Begin /dev/snd/ listing ---"
  26. ls -l /dev/snd
  27. echo "--- End /dev/snd/ listing ---"
  28.